home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / demos / mitimdem.arj / INSTALL.SCR < prev    next >
Text File  |  1993-11-10  |  2KB  |  74 lines

  1. clear
  2.  
  3. rem %1 is destination drive with no :
  4. rem %2 is installation source drive
  5. rem %3 is new contents of RESOURCE.CFG
  6. rem %4 is destination directory
  7.  
  8. rem echo The install program will now copy 
  9. rem echo The Even More Incredible Machine Demo to your hard drive.
  10. rem echo Approximate hard drive space required:  1 Meg
  11. rem echo
  12. rem echo Do you wish to (C)ontinue or (E)xit?
  13. rem pick ce Continue Exit
  14.  
  15. :Continue
  16. clear
  17. godir %1:%4 CantCreate
  18.  
  19. exists %2:RESOURCE.001 Please insert The Even More Incredible Machine Demo disk in drive %2:.
  20. echo Copying Game files...
  21. copy %2:*.*
  22. echo %3 >resource.cfg
  23.  
  24. clear
  25. echo
  26. echo  To play NOW:
  27. echo     Type TIM and press [ENTER].
  28. echo
  29. echo  To play LATER:
  30. echo     Type CD %4 and press [ENTER]
  31. echo     Then type TIM and press [ENTER].
  32. echo
  33. pause
  34. end
  35.  
  36. :CantCreate
  37. clear
  38. echo
  39. alert Unable to create directory %1:%4
  40. end
  41.  
  42. :BadChunk
  43. if ERRORLEVEL 6 goto ERR6
  44. if ERRORLEVEL 5 goto ERR5
  45. if ERRORLEVEL 4 goto ERR4
  46. if ERRORLEVEL 3 goto ERR3
  47. if ERRORLEVEL 2 goto ERR2
  48. if ERRORLEVEL 1 goto ERR1
  49. alert Unable to extract resource file.  Please run install again.
  50. end
  51.  
  52. :ERR1
  53. alert Unable to read resource file.  Make sure the drive door is shut and run install again.
  54. end
  55. :ERR2
  56. alert Unable to write resource file to hard drive.  This program only installs games on hard drives.  Run install again.  If you get this message again you may have a problem with your hard drive.
  57. end
  58. :ERR3
  59. alert Not enough memory to run extraction program.  The extraction program needs a minimum of 550k to operate.
  60. end
  61. :ERR4
  62. alert The resource file is bad.  Run install again.  If you get this message again, you probably received a bad disk.
  63. end
  64. :ERR5
  65. alert Unable to open the resource file for reading.  A possible solution might be to increase the value of the FILES setting in your CONFIG.SYS file.
  66. end
  67. :ERR6
  68. alert Unable to open the target file for writing.  A possible solution might be to increase the value of the FILES setting in your CONFIG.SYS file.
  69. end
  70.  
  71. :exit
  72. end
  73. 
  74.